home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / littelcomp / r5 / lc / examples / objecttest.l < prev    next >
Text File  |  2000-02-28  |  333b  |  19 lines

  1. ;// object creation with littel v0.16b
  2.  
  3. #mode OBJECT
  4.  
  5. #xdef geteight
  6. #xdef inc1
  7.  
  8. PROC geteight ;// his one just returns eight in D0
  9. ENDPROC 8
  10.  
  11. PROC inc1   %param1 ;// call this with parameter on stack, stackcleanup is automatic
  12.    CODESTART       ;// gotta be there!
  13.    INC %param1
  14. ENDPROC %param1
  15.  
  16. END ;// just a silly example //
  17.  
  18.  
  19.